home *** CD-ROM | disk | FTP | other *** search
/ Private: Geographic / Private: Geographic.iso / MAIN.DXR / 00013.ls < prev    next >
Encoding:
Text File  |  1998-03-23  |  546 b   |  27 lines

  1. on mouseEnter me
  2.   if the member of sprite 7 = member 21 of castLib 1 then
  3.     cursor(280)
  4.   end if
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9. end
  10.  
  11. on mouseDown me
  12.   if the member of sprite 7 = member 21 of castLib 1 then
  13.     puppetSound("down")
  14.     set the member of sprite 6 to 9
  15.   end if
  16. end
  17.  
  18. on mouseUp
  19.   if the member of sprite 7 = member 21 of castLib 1 then
  20.     set the member of sprite 7 to 19
  21.     puppetSound("up")
  22.     set the visible of sprite 10 to 1
  23.     set the movieRate of sprite 10 to 1
  24.     set the volume of sprite 10 to 255
  25.   end if
  26. end
  27.